#articleContent h1::before,
#articleContent h2::before,
#articleContent h3::before,
#articleContent h4::before,
#articleContent h5::before,
#articleContent h6::before {
    display: block;
    content: " ";
    height: 100px;
    margin-top: -100px;
    visibility: hidden;
}

#articleContent :focus {
    outline: none;
}

.toc-fixed {
    position: fixed;
    top: 64px;
}

.toc-widget {
    width: 300px;
    padding-left: 5px;
}

.toc-widget .toc-title {
    padding: 35px 0 15px 17px;
    font-size: 1.5rem;
    font-weight: bold;
    line-height: 1.5rem;
}

.toc-widget ol {
    padding: 0;
    list-style: none;
}

#toc-content {
    padding-bottom: 30px;
    padding-right: 30px;
    overflow: auto;
}

#toc-content ol {
    padding-left: 10px;
}

#toc-content ol li {
    padding-left: 10px;
}

#toc-content .toc-link:hover {
    color: #42b983;
    font-weight: 700;
    text-decoration: underline;
}

#toc-content .toc-link::before {
    background-color: transparent;
    max-height: 25px;

    position: absolute;
    right: 23.5vw;
    display: block;
}

#toc-content .is-active-link {
    color: #42b983;
}

#floating-toc-btn {
    position: fixed;
    right: 15px;
    bottom: 76px;
    padding-top: 15px;
    margin-bottom: 0;
    z-index: 998;
}

#floating-toc-btn .btn-floating {
    width: 48px;
    height: 48px;
}

#floating-toc-btn .btn-floating i {
    line-height: 48px;
    font-size: 1.4rem;
}

#toc-aside-2{
    font-size: 12px;
    position: absolute;
    left: 0;
        /*定义整个滚动条高宽及背景：高宽分别对应横竖滚动条的尺寸*/
        ::-webkit-scrollbar
        {
            width:5px;
            background-color:#F5F5F5;
        }
        /*定义滚动条轨道：内阴影+圆角*/
        ::-webkit-scrollbar-track
        {
            background-color:#F5F5F5;
        }
        /*定义滑块：内阴影+圆角*/
        ::-webkit-scrollbar-thumb
        {
            border-radius:5px;
            background-color:#dbd8d8;
        }
}
.active-article{
    color: rgb(34, 135, 68) !important;
}

#toc-aside-2 #toc-content{
    max-height: 75vh;
    overflow-y: auto;
}
.article-list a{
    color: black;
}
.article-list .card{
    color: black;
    padding-left: 20px;
    li::before {
        content: "▶"; /* 使用Unicode字符来表示小三角，也可以使用实体编码如 "&#9658;" */
        margin-right: 5px; /* 根据需要调整小三角与文字的间距 */
      }
    li a:hover {
        color: rgb(220, 104, 104);
      }
    li{
        margin-top: 10px;
    }
}
